home *** CD-ROM | disk | FTP | other *** search
- /* --------------------------------------------------- */
- /* Final Copy II Arexx Macro - DELETE TO END OF LINE */
- /* This macro will delete text from the insertion */
- /* point to the end of the line that the insertion */
- /* point is in. */
- /* --------------------------------------------------- */
- Options Results
-
- /* ---------------------------------------------- */
- /* Don't do any thing if a range is selected. */
- /* ---------------------------------------------- */
- Status Position
- pos = Result
- IF ( WORDS(pos) = 4 ) THEN
- EXIT
-
- AltDown
- CtrlDown
- ShiftDown
- Cursor Right
- AltUp
- CtrlUp
- ShiftUp
-
- Clear
-
-